home *** CD-ROM | disk | FTP | other *** search
- <?
-
- if (($rakam1 == "") || ($rakam2 == "") || ($hesap =="")) {
- header("Location: form_hesap.html");
- exit;
- }
-
- if ($hesap == "topla") {
- $sonuc = $rakam1 + $rakam2;
- } else if ($hesap == "cikar") {
- $sonuc = $rakam1 - $rakam2;
- } else if ($hesap == "carp") {
- $sonuc = $rakam1 * $rakam2;
- } else if ($hesap == "bol") {
- $sonuc = $rakam1 / $rakam2;
- }
-
- ?>
-
- <html>
- <head>
- <title></title>
- <meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
- <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-9">
- </head>
-
-
- <body bgcolor="#ffffff">
-
- <b>Sonuτ: <? echo "$sonuc"; ?></b>
-
- </body>
- </html>
-